pandas show column with regular expression

35

S=pd.Series(['Finland','Colombia','Florida','Japan','Puerto Rico','Russia','france'])
S.str.contains('^F.*')
import numpy as np
df['first_five_Letter']=df['Country (region)'].str.extract(r'(^\w{5})')
df.head()
df[df['Country (region)'].str.count('^[pP].*')>0]
# Total items starting with F
S.str.count(r'(^F.*)').sum()

Comments

Submit
0 Comments